home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / game / shoot / ADescentSrc.lha / descent / Makefile < prev    next >
Makefile  |  1999-03-11  |  2KB  |  63 lines

  1. # Amiga Descent Makefile
  2. #
  3. # $Revision: 1.12 $
  4. # $Log: Makefile,v $
  5. # Revision 1.12  1999/03/10 23:26:36  nobody
  6. # Warp3D V2 adaption
  7. #
  8. # Revision 1.11  1999/02/23 23:50:26  nobody
  9. # *** empty log message ***
  10. #
  11. # Revision 1.10  1998/12/21 17:12:13  nobody
  12. # *** empty log message ***
  13. #
  14. # Revision 1.9  1998/09/26 14:59:42  nobody
  15. # Added Warp3D support
  16. #
  17. # Revision 1.8  1998/08/11 14:39:03  nobody
  18. # Moved editor to root
  19. #
  20. # Revision 1.7  1998/08/08 15:51:09  nobody
  21. # Activated the Editor
  22. #
  23. # Revision 1.6  1998/04/13 14:33:08  tfrieden
  24. # Added kali
  25. #
  26. # Revision 1.5  1998/04/09 16:08:06  tfrieden
  27. # Added more switches for optimization
  28. #
  29. # Revision 1.4  1998/04/02 13:41:31  tfrieden
  30. # *** empty log message ***
  31. #
  32. # Revision 1.3  1998/03/25 22:49:55  tfrieden
  33. # *** empty log message ***
  34. #
  35. # Revision 1.1.1.1  1998/03/03 15:11:45  nobody
  36. # reimport after crash from backup
  37. #
  38. # Revision 1.3  1998/02/25 21:18:15  hfrieden
  39. # Added 'Amiga' directory
  40. #
  41.  
  42. DIRS = kali Amiga 2d 3d bios cfile fix iff mem misc texmap vecmat main # editor ui pslib main
  43. CC = gcc
  44. CPU20 = -m68020 -Wa,-mno-68882 -Wa,-mno-68881
  45. CPU40 = -m68040
  46. CPU60 = -m68060
  47. EDITOR = -DEDITOR
  48. WARP = -DWARP3D
  49. OPTIONS = $(CPU60) $(WARP) -DWANT_IPX -DWANT_KALI# -DWANT_FPU
  50. CFLAGS=-g -gstabs $(OPTIONS) -O2 -Drand=myrand -fstrength-reduce -msmall-code -fomit-frame-pointer -fbaserel32
  51. INCLUDES=-I../includes
  52.  
  53. all: subdirs
  54.  
  55. subdirs:
  56.     -rm adescent
  57.     set -e; for i in $(DIRS); do $(MAKE) -C $$i CFLAGS="$(CFLAGS)" INCLUDES=$(INCLUDES); done
  58.  
  59. clean:
  60.     rm  objects/*.o
  61.     rm -f lib/*.a
  62.     rm -f adescent
  63.